home *** CD-ROM | disk | FTP | other *** search
- #ifndef __Object__
- #define __Object__
-
- //—————————————————————————————————————————————————————————————————————————————————————
- // Object class - Basic Object from which all others are derived
- // The main purpose is to provide a generic
- // Virtual destructor function so that the list
- // object doesn't need to know what it is deleting
- //—————————————————————————————————————————————————————————————————————————————————————
- class Object /* C++ Pointer Object */
- {
- public: Object(); // constructor
- public: virtual ~Object(); // destructor
- };
-
- #endif
-